MyStandardError
Directs error output. This is how you would define your error function if you were to name itMyStandardError
:
void MyStandardError ( JMSessionRef session, const char* message, UInt32 messageLen);
session
- The session sending the error text.
message
- The error message to display.
messageLen
- The length of the text.
DISCUSSION
When invoking the Java runtime environment usingJMOpenSession
, you must designate a callback function to direct any error output received from the session.TheMyStandardError
function has the same form as theMyStandardOutput
callback function.SEE ALSO
TheMyStandardOutput
function.